下载安装虚拟光驱daemon410-x86.exe,下载vc6.0 iso文件V_VSE600ENU1.iso,之后在虚拟光驱里安装;
2安装psdk
?到微软官网下载sdk,至于下载那个版本要看自己的系统,网上好多介绍如何选择合适的sdk的帖子;
?? 下载后
?运行文件夹里setup文件夹里的CoreSDK-x86.msi(应该是对应的intel的cpu)安装,并安装里面所有项(我不具体清楚Strsafe.h在那个项里)。安装结束后会在安装的目的文件夹里产生include和lib文件夹,到这里就行了。
3在vc6.0中关联psdk;
在vc6.0 菜单Tools\Options\Directoires include files 和 Library files 下添加PSDK中include 和 Lib
ok;
SDK简介
SDK is short for Software Development Kit , which provide development kit for engineer to develop some specific softvare;
refering to SDK, we must make the DLL and API clear;
DLL is the Dynamic link library, DLL is a executing file,but it can't execut independently ,when we executing a EXE file,the exe
file will dynamically link the DLL file,
API is supplyed by system ,it can be called by application, and DLL fill include lots of API;
to using some API,we must use .lib and .h files,in which the API function is declared or tell the compiler where it can find the
API in a DLL file,
so the .lib file is used when compiling ,whil the DLL file is linked when executing;
本页共28段,1262个字符,1626 Byte(字节)